- Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathsource.cpp
39 lines (28 loc) · 603 Bytes
/
source.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>
usingnamespaceSystem;
usingnamespaceSystem::ComponentModel;
usingnamespaceSystem::Windows::Forms;
usingnamespaceSystem::Drawing;
public ref classForm1: publicForm
{
protected:
TextBox^ textBox1;
public:
property int MyProperty
{
// <Snippet1>
[Bindable(BindableSupport::Yes)]
intget()
{
// Insert code here.
return0;
}
voidset( int theValue )
{
// Insert code here.
}
}
// </Snippet1>
};